home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.4 Applications 1997 August / SGI IRIX 6.4 Applications 1997 August.iso / dist / mmailp.idb / usr / lib / Zmail / bin / sh-versions / mimeit.z / mimeit
Encoding:
Text File  |  1997-01-22  |  405 b   |  23 lines

  1. :
  2. # mimeit - mail base64-encoded stdin
  3. #    with content-type $1
  4. #    to recipient $2
  5. #    with subject $3
  6. # All other arguments are passed on to splitmail 
  7.  
  8. ct="$1"
  9. to="$2"
  10. sub="$3"
  11.  
  12. shift
  13. shift
  14. shift
  15.  
  16. ( echo Mime-Version: 1.0 ; \
  17.   echo Content-type: "$ct" ; \
  18.   echo To: "$to" ; \
  19.   echo Subject: "$sub" ; \
  20.   echo Content-Transfer-Encoding: base64 ;
  21.   echo "" ; \
  22.   mimencode -b ) | splitmail -d "$@"
  23.